home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / shared.cst / 00004_Script_NO loop end frame script < prev    next >
Text File  |  1999-03-01  |  413b  |  25 lines

  1. global gLoopList
  2.  
  3. on exitFrame
  4.   
  5.   append gLoopList, 1
  6.   
  7.   repeat with i = 1 to 6
  8.     if soundBusy(i) then sound stop i
  9.   end repeat
  10.   cursor 200
  11.   go to frame "welcomeBack" of movie "main"
  12.   updatestage
  13.   
  14. end exitFrame
  15.  
  16.  
  17. on mouseDown 
  18.   repeat with i = 1 to 6
  19.     if soundBusy(i) then sound stop i
  20.   end repeat
  21.   
  22.   cursor 200
  23.   go to frame "welcomeBack" of movie "main"
  24. end mouseDown
  25.